home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 24 / Amiga Format AFCD24 (Feb 1998, Issue 108).iso / -in_the_mag- / emulation / amiga / uae-0.7.0b2 / src / include / execlib.h < prev    next >
C/C++ Source or Header  |  1998-01-20  |  829b  |  41 lines

  1.  /*
  2.   * UAE - The Un*x Amiga Emulator
  3.   *
  4.   * Miscellaneous bits for exec emulation
  5.   *
  6.   * Copyright 1996 Bernd Schmidt
  7.   */
  8.  
  9. #define CMD_INVALID 0
  10. #define CMD_RESET   1
  11. #define CMD_READ    2
  12. #define CMD_WRITE   3
  13. #define CMD_UPDATE  4
  14. #define CMD_CLEAR   5
  15. #define CMD_STOP    6
  16. #define CMD_START   7
  17. #define CMD_FLUSH   8
  18. #define CMD_NONSTD  9
  19.  
  20. #define NT_TASK     1
  21. #define NT_DEVICE   3
  22. #define NT_MSGPORT  4
  23. #define NT_MESSAGE  5
  24. #define NT_FREEMSG  6
  25. #define NT_REPLYMSG 7
  26. #define NT_RESOURCE 8
  27. #define NT_LIBRARY  9
  28. #define NT_SIGNALSEM 15
  29.  
  30. #ifndef MEMF_PUBLIC /* protection for AmigaDOS */
  31. #define MEMF_PUBLIC 1
  32. #define MEMF_CHIP 2
  33. #define MEMF_FAST 4
  34. #define MEMF_LOCAL 256
  35. #define MEMF_24BITDMA 512
  36. #define MEMF_CLEAR (1<<16)
  37. #define MEMF_LARGEST (1<<17)
  38. #define MEMF_REVERSE (1<<18)
  39. #define MEMF_TOTAL (1<<19)
  40. #endif
  41.